home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :start
- cls
- echo.
- echo Follow the instructions on the screen to configure
- echo the demo for your system.
- echo.
- echo 1. Use Internal Speaker
- echo 2. Adlib, SoundBlaster, and compatables
- echo 3. MT-32 or LAPC-1
- echo 4. No music
- echo 5. Quit
- echo.
- echo Please enter the number for your choice:
- query
-
- if errorlevel = 5 goto exit
- if errorlevel = 4 goto nomusic
- if errorlevel = 3 goto mt32
- if errorlevel = 2 goto adlib
- if errorlevel = 1 goto inter
-
- echo Unavailable choice.
- pause
- goto start
-
- REM Use interal speaker
- :inter
- echo.
- echo.
- echo Loading interactive demo
- HB3DEMO.EXE PC
- goto exit
-
- REM Use adlib, soundblaster speaker
- :adlib
- echo.
- echo.
- echo Loading interactive demo
- HB3DEMO.EXE ADLIB
- goto exit
-
- REM Use MT-32 speaker
- :mt32
- echo.
- echo.
- echo Loading interactive demo
- HB3DEMO.EXE MT32
- goto exit
-
- REM Use None speaker
- :nomusic
- echo.
- echo.
- echo Loading interactive demo
- HB3DEMO.EXE NONE
- goto exit
-
- :exit
-